home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 2000 January / Macworld (2000-01).dmg / Shareware World / Comms & Internet / BTV 3.2.4 / AppleScript info next >
Text File  |  1999-10-05  |  1KB  |  25 lines

  1. AppleScript commands are implemented in BTV for the following actions:
  2.  
  3. Recording movie files (start/stop) with optional filename
  4. PICT capture
  5. Video control (pause/resume)
  6. Mouse control (show/hide)       <-only works in full screen mode
  7. Mode control (full screen mode/window mode)
  8. Size control (video width, video height)
  9. Volume/mute control
  10.  
  11. So a sample script that loads BTV, sets the display to full screen mode, sets the volume to the maximum and hides the mouse would look like this:
  12.  
  13. tell application "BTV"
  14.         launch
  15.         full screen mode
  16.     activate
  17.     set volume to 7
  18.         hide mouse
  19. end tell
  20.  
  21. The reason for the 'launch' command is so that BTV loads in the background without any open windows so you can decide on full screen or window mode before BTV has reverted to the previously saved setting. You must use the 'activate' command after setting BTV to full screen mode or else the video display will draw over other application's open windows.
  22.  
  23. To see all available commands for BTV: open Script Editor, choose 'Open Dictionary' from the File menu and select BTV.
  24.  
  25. If there are any AppleScript commands you would find useful please email me (benbird@softhome.net) and I'll implement them.